home *** CD-ROM | disk | FTP | other *** search
/ SGI Hot Mix 17 / Hot Mix 17.iso / HM17_SGI / html / vendors / cocreate / fixall < prev    next >
Text File  |  1997-06-17  |  113b  |  9 lines

  1. #!/bin/perl
  2.  
  3. @allfiles = `find . -name '*.htm'`;
  4.  
  5. foreach $file (@allfiles){
  6.     $file =~ /(.*)\s*/;
  7.     `fixem $1`;
  8. }
  9.